home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gzacpath.h < prev    next >
Text File  |  1996-12-02  |  2KB  |  51 lines

  1. /* Copyright (C) 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gzacpath.h */
  20. /* Private representation of clipping path accumulator */
  21. /* Requires gxdevice.h, gzcpath.h */
  22.  
  23. /*
  24.  * Device for accumulating a rectangle list.  This device can clip
  25.  * the list being accumulated with a clipping rectangle on the fly:
  26.  * we use this to clip clipping paths to band boundaries when
  27.  * rendering a band list.
  28.  */
  29. typedef struct gx_device_cpath_accum_s {
  30.     gx_device_common;
  31.     gs_memory_t *list_memory;
  32.     gs_int_rect clip_box;
  33.     gs_int_rect bbox;
  34.     gx_clip_list list;
  35. } gx_device_cpath_accum;
  36.  
  37. /* Start accumulating a clipping path. */
  38. void gx_cpath_accum_begin(P2(gx_device_cpath_accum *padev, gs_memory_t *mem));
  39.  
  40. /* Set the accumulator's clipping box. */
  41. void gx_cpath_accum_set_cbox(P2(gx_device_cpath_accum *padev,
  42.                 const gs_fixed_rect *pbox));
  43.  
  44. /* Finish accumulating a clipping path. */
  45. /* Note that this releases the old contents of the clipping path. */
  46. int gx_cpath_accum_end(P2(const gx_device_cpath_accum *padev,
  47.               gx_clip_path *pcpath));
  48.  
  49. /* Discard an accumulator in case of error. */
  50. void gx_cpath_accum_discard(P1(gx_device_cpath_accum *padev));
  51.